-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update mix.exs to Phoenix 1.4 #13
Conversation
https://travis-ci.org/dwyl/phoenix-chat-example/builds/455809393#L667
😞 |
should be: json_decoder: Phoenix.json_library() |
warning: failed to load Jason for Phoenix JSON encoding
(module Jason is not available).
Ensure Jason exists in your deps in mix.exs,
and you have configured Phoenix to use it for JSON encoding by
verifying the following exists in your config/config.exs:
config :phoenix, :json_library, Jason
(phoenix) lib/phoenix.ex:40: Phoenix.start/2
(kernel) application_master.erl:277: :application_master.start_it_old/4 |
Codecov Report
@@ Coverage Diff @@
## master #13 +/- ##
=====================================
Coverage 100% 100%
=====================================
Files 6 6
Lines 19 20 +1
=====================================
+ Hits 19 20 +1
Continue to review full report at Codecov.
|
Tried to "drop" using mix task: https://hexdocs.pm/ecto/Mix.Tasks.Ecto.Drop.html
Failed! had to go nuclear: https://stackoverflow.com/questions/7073773/drop-postgresql-database-through-command-line
obviously I got the following error:
(new computer ...) see: https://postgresapp.com/documentation/cli-tools.html
Once |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This debugging was a super useful process to read through, I need a better system to 'star' specific pulls or issues to come back to!
I have the same problem as above |
@iteles just noticed that I forgot to update the version of Phoenix in the mix.exs file ... 🙄 (derp!)
Phoenix.json_library()
Update mix.exs to Phoenix 1.4 #13 (comment)Thanks for reviewing/merging. 👍